Skip to content

Latest commit

 

History

History
 
 

Custom Request 1

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Custom Request 1

Author: Marin Radu


Description

Follow the server's instructions and append the Python version to the query to retrieve the dynamic flag.

Requirements

  • curl
  • HTTP requests

Solve

Connect to the provided domain and port, read the message, check the Python version, and append it to the query:

DOMAIN=chal.chronossec.site
PORT=30030

/usr/bin/curl -sI http://$DOMAIN:$PORT | /usr/bin/grep -i python

/usr/bin/curl -s http://$DOMAIN:$PORT/flag?python=3.9.17

Flag: CSCTF{hash-that-changes-every-5-minutes}